| Conditions | 1 |
| Paths | 1 |
| Total Lines | 16 |
| Code Lines | 12 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | class NodeForm { |
||
| 7 | show() { |
||
| 8 | this.hasBeenOpened = true; |
||
| 9 | this.$form.dialog({ |
||
| 10 | title: this.name, |
||
| 11 | width: 800, |
||
| 12 | appendTo: '.dokuwiki', |
||
| 13 | modal: true, |
||
| 14 | open: () => { |
||
| 15 | const TIMEOUT_TO_LOOK_SMOOTH = 50; |
||
| 16 | window.setTimeout(() => { |
||
| 17 | // hack to ensure this dialog is in front of other open dialogs, e.g. the footnote dialog. |
||
| 18 | this.$form.dialog('moveToTop'); |
||
| 19 | }, TIMEOUT_TO_LOOK_SMOOTH); |
||
| 20 | }, |
||
| 21 | }); |
||
| 22 | } |
||
| 23 | |||
| 64 |